home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Fonts
/
FaceMaintainer.cp
< prev
next >
Wrap
Text File
|
2000-06-23
|
437b
|
24 lines
// FaceMaintainer.cp
#ifndef FaceMaintainer_h
#include "FaceMaintainer.h"
#endif
FaceMaintainer::FaceMaintainer()
: port( GrafPortObject::Current() ),
old( GrafPortObject::Current().Face() )
{
}
FaceMaintainer::FaceMaintainer( const Face& toUse )
: port( GrafPortObject::Current() ),
old( GrafPortObject::Current().Face() )
{
port.SetFace( toUse );
}
void FaceMaintainer::Reset() const
{
port.SetFace( old );
}